home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / SHELLS / SZ2 / ADEMO3.DEF < prev    next >
Text File  |  1992-08-31  |  819b  |  23 lines

  1. .TUTORIAL - Using the [ EXTERNAL ] symbol, "%%"
  2.  
  3. How to "reserve" an event name with a symbol.
  4.  
  5. As your application "evolves", you will probably move code into units
  6. and/or independent objects.  To signal SHAZAM that a dummy routine
  7. need not be created, keywords or keyword-symbols are used.
  8.  
  9. The "hdOpen" routine has been moved to the *.INC file and the *.EVT
  10. has been eliminated.  We use the "%%" symbol to signal that the
  11. routine exists, so a "dummy routine" is not created.
  12.  
  13. @PA - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  14.  
  15.  
  16.  
  17. [ UNIT ]
  18. General /r                                       @@ Use & register
  19.  
  20. [ SUBMENU ] File        ;;file management
  21. %%Open                  ;;open a file            @@ *.INC file
  22. Save                    ;;save current window    @@ EDITORS.PAS internal
  23.